/* Hero section specific to Our Chapters */
.our-chapters-hero {
    background: linear-gradient(rgba(18, 31, 58, 0.85), rgba(18, 31, 58, 0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80&w=1920') center/cover;
    height: 380px;
}

/* Chapter Card Specific Styling */
.chapter-list-card {
    transition: transform 0.3s ease;
    cursor: pointer;
    background: white;
}

.chapter-list-card:hover {
    transform: translateY(-5px);
}

.chapter-list-card img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* slight shadow for the image like the screenshot */
}

/* Timeline Styling */
.custom-timeline {
    position: relative;
}

.timeline-item {
    position: relative;
    min-height: 120px;
}

.timeline-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 25px;
    width: 35px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-line {
    width: 2px;
    flex-grow: 1;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 2px;
}

.timeline-content h5 {
    font-size: 1.05rem;
}